/* Footer Styles */
:root {
    --glow-color: #0ef;
    --dark-bg: #03212d;
    --text-color: #fff;
    --shadow-color: rgba(14, 255, 255, 0.4);
}

/* Reset and ensure proper footer positioning */
* {
    box-sizing: border-box;
}

/* Footer container styles */
my-footer {
    display: block;
    width: 100%;
    margin-top: 0;
    clear: both;
}

footer {
    background-color: #021820;
    padding: 50px 0 20px;
    width: 100%;
    margin: 0;
    clear: both;
    position: relative;
    z-index: 1;
}

/* Container with proper alignment */
footer .container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-column {
    width: 100%;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--glow-color);
    bottom: -10px;
    left: 0;
    box-shadow: 0 0 5px var(--glow-color);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--glow-color);
    padding-left: 5px;
    text-shadow: 0 0 5px var(--glow-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background-color: var(--glow-color);
    color: var(--dark-bg);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--shadow-color);
    border-color: var(--glow-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 30px;
}

/* Ensure footer stays at bottom and doesn't overlap */
footer {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Fix any potential container conflicts */
.feedback-container {
    margin-bottom: 0 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        margin-bottom: 30px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    footer .container1 {
        padding: 0 15px;
    }
    
    .footer-column p {
        font-size: 0.85rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}


.contactList{
    color: var(--text-color);
}